home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / exampleCode / opengl / lmwrap / igl / Makefile < prev    next >
Encoding:
Makefile  |  1996-11-11  |  464 b   |  23 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. # debugging option
  6. LCOPTS    = -g
  7. #OPTIMIZER= -O2
  8.  
  9. LLDLIBS    = -lXirisw -lXm -lXt -lX11 -lsphere -lgl -lPW -lm
  10. # override the prototypes macro in commondefs:  if you want
  11. # prototyping turned on, comment out the next line.
  12. PROTOTYPES=
  13.  
  14. CFILES = init.c grafix.c main.c ui.c draw.c
  15. TARGETS = lmIGL
  16.  
  17. default all:    $(TARGETS)
  18.  
  19. include $(COMMONRULES)
  20.  
  21. $(TARGETS): $(OBJECTS) 
  22.     $(CCF) $(OBJECTS) $(LDFLAGS) -o $(TARGETS) 
  23.